Add dummy for _gdk_input_window_crossing (). Set both input_window_destroy
and input_window_crossing pointers in the Impl struct.
Reported by John Ralls.
return FALSE;
}
+
+void
+_gdk_input_window_crossing (GdkWindow *window,
+ gboolean enter)
+{
+}
GdkDevicePrivate *gdkdev);
void _gdk_init_input_core (void);
+void _gdk_input_window_crossing (GdkWindow *window,
+ gboolean enter);
+
void _gdk_input_exit (void);
#endif /* __GDK_INPUTPRIVATE_H__ */
#include "gdk.h"
#include "gdkwindowimpl.h"
#include "gdkprivate-quartz.h"
+#include "gdkinputprivate.h"
static gpointer parent_class;
iface->queue_antiexpose = _gdk_quartz_window_queue_antiexpose;
iface->queue_translation = _gdk_quartz_window_queue_translation;
iface->destroy = _gdk_quartz_window_destroy;
+ iface->input_window_destroy = _gdk_input_window_destroy;
+ iface->input_window_crossing = _gdk_input_window_crossing;
}